找传奇、传世资源到传世资源站!

广度优先搜索

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

rom collections import deque

maze = [
     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
     [1, 0, 0, 1, 0, 0, 0, 1, 0, 1],
     [1, 0, 0, 1, 0, 0, 0, 1, 0, 1],
     [1, 0, 0, 0, 0, 1, 1, 0, 0, 1],
     [1, 0, 1, 1, 1, 0, 0, 0, 0, 1],
     [1, 0, 0, 0, 1, 0, 0, 0, 0, 1],
     [1, 0, 1, 0, 0, 0, 1, 0, 0, 1],
     [1, 0, 1, 1, 1, 0, 1, 1, 0, 1],
     [1, 1, 0, 0, 0, 0, 0, 0, 0, 1],
     [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]

]

dirs = [
    lambda x,y: (x 1,y),
    lambda x,y: (x-1,y),
    lambda x,y: (x,y 1),
    lambda x,y: (x,y-1)
     ]

def print_r(path):
curNode = path[-1]

realpath = []

while curNode[2] != -1:
realpath.append(curNode[0:2])
curNode = path[curNode[2]]

realpath.append(curNode[0:2]) #起点
realpath.reverse()
for node in realpath:
print(node)

def maze_path_queue(x1,y1,x2,y2):

queue = deque()
queue.append((x1,y1,-1))
path = []

while len(queue) > 0:
curNode = queue.popleft()
path.append(curNode)

if curNode[0] == x2 and curNode[1] == y2:
print_r(path)
return False

for dir in dirs:
nextNode = dir(curNode[0],curNode[1])
if maze[nextNode[0]][nextNode[1]] == 0:
queue.append((nextNode[0],nextNode[1],len(path)-1))
maze[nextNode[0]][nextNode[1]] = 2
else:   
    print("没有路")
    return False

maze_path_queue(1,1,8,8)

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复